home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Acorn User: China
/
Acorn User China CD-ROM (UK) (Disc A)
/
Acorn User China CD-ROM (UK) (Disc A).bin
/
DEMON
/
DEVELOPER
/
HYPERMAIL.ARC
/
!hypermail_c_mem
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-07-21
|
359 b
|
23 lines
/*
** Copyright (C) 1994, Enterprise Integration Technologies Corp.
** All Rights Reserved.
** Kevin Hughes, kevinh@eit.com
** 7/14/94
*/
#include "hypermail.h"
#include "mem.h"
/* Just a tiny malloc() error checker!
*/
void *emalloc(i)
int i;
{
void *p;
if ((p = (void *) malloc(i)) == NULL)
progerr("Ran out of memory!");
return p;
}